home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / basic / pbtool.exe / REGNAMES.INC < prev    next >
Text File  |  1991-05-07  |  922b  |  22 lines

  1. '┌───────────────────────────────────────────────────────────────────────────┐
  2. '│                           REGNAMES.INC                                    │
  3. '│ This file is to be used as a $INCLUDE file whenever you use the CALL      │
  4. '│ INTERRUPT statement in your PowerBASIC program. The file contains         │
  5. '│ named constants that represent the registers the CALL INTERRUPT statement │
  6. '│ can manipulate.                                                           │
  7. '│ In order to use this file include it in your programs using the $INCLUDE  │
  8. '│ metastatement:                                                            │
  9. '│                  $INCLUDE "REGNAMES.INC"                                  │
  10. '└───────────────────────────────────────────────────────────────────────────┘
  11.  
  12. %FLAGS = 0
  13. %AX    = 1
  14. %BX    = 2
  15. %CX    = 3
  16. %DX    = 4
  17. %SI    = 5
  18. %DI    = 6
  19. %BP    = 7
  20. %DS    = 8
  21. %ES    = 9
  22.